home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 62 / Quick PC 62.iso / I386 / IIS5_01.CAB / IIS_date.str < prev    next >
Encoding:
Text File  |  1998-09-16  |  1.7 KB  |  48 lines

  1. <%
  2.  
  3. ' These format strings are taken from the Regional Settings control
  4. ' panel. They determine the format used for dates and times displayed
  5. ' inside controls. To change them, simply open the Regional Settings
  6. ' control panel and paste the appropriate format strings into the
  7. ' constants below.
  8. '
  9. ' NOTE: Using a date format with literal characters outside of the
  10. ' LATIN-1 set will cause problems if the client is on a machine that
  11. ' does not recognize the character set. The safest solution is to
  12. ' use a date format without the literals or use a 4 character token
  13. ' for the month (MMMM) and day of the week (dddd) rather than the
  14. ' literal and rely on substituting the localized string.
  15. Const L_DATE_LONGFORMAT_TEXT = "dddd, MMMM dd, yyyy"
  16. Const L_DATE_SHORTFORMAT_TEXT = "M/d/yy"
  17. Const L_TIME_FORMAT_TEXT = "h:mm:ss tt"
  18.  
  19. ' Localizable strings used in date formats
  20.  
  21. ' Month strings appear when the MMMM token is used in the date format.
  22. Const L_JAN_TEXT = "January"
  23. Const L_FEB_TEXT = "February"
  24. Const L_MAR_TEXT = "March"
  25. Const L_APR_TEXT = "April"
  26. Const L_MAY_TEXT = "May"
  27. Const L_JUN_TEXT = "June"
  28. Const L_JUL_TEXT = "July"
  29. Const L_AUG_TEXT = "August"
  30. Const L_SEP_TEXT = "September"
  31. Const L_OCT_TEXT = "October"
  32. Const L_NOV_TEXT = "November"
  33. Const L_DEC_TEXT = "December"
  34.  
  35. ' Day strings appear when the dddd token is used in the date format.
  36. Const L_MON_TEXT = "Monday"
  37. Const L_TUE_TEXT = "Tuesday"
  38. Const L_WED_TEXT = "Wednesday"
  39. Const L_THU_TEXT = "Thursday"
  40. Const L_FRI_TEXT = "Friday"
  41. Const L_SAT_TEXT = "Saturday"
  42. Const L_SUN_TEXT = "Sunday"
  43.  
  44. ' Daytime strings appear when the tt token is used in the date format.
  45. Const L_MORNING_TEXT = "AM"
  46. Const L_AFTERNOON_TEXT = "PM"
  47.  
  48. %>